home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000143_news@newsmaster….columbia.edu _Sat Aug 9 12:47:09 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA00454
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sat, 9 Aug 1997 12:47:08 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id MAA12451
  7.     for kermit.misc@watsun; Sat, 9 Aug 1997 12:47:08 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: k95: Scripts for Automatically launching other programs
  12. Date: 9 Aug 1997 16:47:06 GMT
  13. Organization: Columbia University
  14. Lines: 19
  15. Message-ID: <5si6ua$c1h$1@apakabar.cc.columbia.edu>
  16. References: <01bca452$3b9930a0$a80146a6@reed>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7440
  19.  
  20. In article <01bca452$3b9930a0$a80146a6@reed>,
  21. Reed Rivkind <reed@!nospam.dfcu.com> wrote:
  22. : Does anyone have any example scripts that do the following?
  23. : Wait for a file to be transferred over, and then run a Dos command.  This
  24. : process can not interrupt the current k95 session.  -I don't want to press
  25. : any key to continue.
  26. It should be entirely straightforward:
  27.  
  28.   send xxxx
  29.   if fail end 1 Transfer failed
  30.   run yyyy
  31.  
  32. (where xxxx is a filename and yyyy is a "DOS" command).
  33. The "press any key to continue" business happens only when the RUN
  34. command was given interactively.
  35.  
  36. - Frank